feat(supabase): add SupabaseBucketDownloader component#3250
Open
SyedShahmeerAli12 wants to merge 4 commits intodeepset-ai:mainfrom
Open
feat(supabase): add SupabaseBucketDownloader component#3250SyedShahmeerAli12 wants to merge 4 commits intodeepset-ai:mainfrom
SyedShahmeerAli12 wants to merge 4 commits intodeepset-ai:mainfrom
Conversation
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
…for Python 3.14 compat
…tpcore>=0.18 for Python 3.14
Contributor
Coverage report (supabase)Click to see where and how coverage changed
This report was generated by python-coverage-comment-action |
||||||||||||||||||||||||
Contributor
Author
|
@davidsbatista or could anyone please review this PR when you get a chance? This adds |
Contributor
|
@SyedShahmeerAli12, please, there's no need to tag us and ask to review the PRs, it was open just 2 days ago. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related Issues
SupabaseBucketDownloader#3084Proposed Changes
Adds
SupabaseBucketDownloader, a new Haystack component that downloads files from a Supabase Storage bucket and returns them asByteStreamobjects for use in indexing pipelines.Component:
haystack_integrations.components.downloaders.supabase.SupabaseBucketDownloaderKey features:
ByteStreamobjects withmeta["file_path"]andmeta["bucket_name"]setfile_extensionsfilter (case-insensitive)to_dict/from_dict)SUPABASE_SERVICE_KEYenv var (service role key for private buckets)Usage:
Dependency added:
supabase>=2.0.0How did you test it?
9 unit tests covering:
to_dict/from_dict)run()returns correctByteStreamobjects with metadataIntegration test skipped unless
SUPABASE_URLandSUPABASE_SERVICE_KEYare set.Notes for the reviewer
This is the first of the remaining sub-tasks from #2862 (after
SupabasePgvectorDocumentStore,SupabasePgvectorEmbeddingRetriever, andSupabasePgvectorKeywordRetrieverwere merged in #3164).The
supabase>=2.0.0dependency is added topyproject.toml. The existing integration only depended onpgvector-haystack.Checklist
feat: